【例子介绍】java openOffice swfTools flexpaper 实现的仿百度文库文档在线浏览(源码)
鉴于网上找的在线浏览都略去了flexpaper ,于是自己花费几个小时完成了openOffice swfTools flexpaper 技术实现仿百度文库的在线浏览。功能已经实现,需要的自己下去优化一下,修改下openoffice和SWFTOOLS安装...
【相关图片】
【源码结构】
文件清单
└── OnlineBrowsen
├── src
│ ├── com
│ │ └── chain
│ │ ├── servlet
│ │ │ └── OnlineServlet.java
│ │ └── utils
│ │ ├── Doc2PdfUtil.java
│ │ ├── PathUtil.java
│ │ └── Pdf2SwfUtil.java
│ └── log4j.properties
└── WebRoot
├── doc
│ └── Computer.doc
├── flexpaper
│ ├── aspnet
│ │ ├── admin_files
│ │ │ ├── controls
│ │ │ │ ├── uploadify.ashx
│ │ │ │ └── uploadify.swf
│ │ │ ├── css
│ │ │ │ ├── install.css
│ │ │ │ ├── prettify.css
│ │ │ │ └── uploadify.css
│ │ │ ├── images
│ │ │ │ ├── bg_button_.png
│ │ │ │ ├── bg_head.png
│ │ │ │ ├── bg_process_active.gif
│ │ │ │ ├── bg_process_complete.gif
│ │ │ │ ├── bg_process_default.gif
│ │ │ │ ├── bg_process_prevactive.gif
│ │ │ │ ├── button_hdr_docs.png
│ │ │ │ ├── button_hdr_home.png
│ │ │ │ ├── cancel.png
│ │ │ │ ├── config.ini.win.aspx.png
│ │ │ │ ├── config.ini.win.php.png
│ │ │ │ ├── delete.png
│ │ │ │ ├── flexpaper_logo.png
│ │ │ │ ├── footer_logo.gif
│ │ │ │ ├── icon_check_process_12px.gif
│ │ │ │ ├── icon_warn.png
│ │ │ │ ├── info_icon.png
│ │ │ │ ├── paper_lock.png
│ │ │ │ ├── reload.png
│ │ │ │ ├── std_btn_24_blue.png
│ │ │ │ └── upload.png
│ │ │ └── js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.uploadify.min.js
│ │ │ ├── pagination.js
│ │ │ ├── prettify.js
│ │ │ └── swfobject.js
│ │ ├── App_Code
│ │ │ ├── Common.cs
│ │ │ ├── Config.cs
│ │ │ ├── pdf2swf.cs
│ │ │ └── swfextract.cs
│ │ ├── change_config.aspx
│ │ ├── change_config.aspx.cs
│ │ ├── checkdirpermissions.aspx
│ │ ├── checkdirpermissions.aspx.cs
│ │ ├── config
│ │ │ ├── config.xml
│ │ │ └── Web.config
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── flexpaper.master
│ │ ├── flexpaper.master.cs
│ │ ├── FlexPaperViewer.swf
│ │ ├── js
│ │ │ ├── flexpaper_flash_debug.js
│ │ │ ├── flexpaper_flash.js
│ │ │ └── jquery.js
│ │ ├── services
│ │ │ ├── containstext.ashx
│ │ │ ├── numpages.ashx
│ │ │ └── view.ashx
│ │ ├── setup.aspx
│ │ ├── setup.aspx.cs
│ │ ├── simple_document.aspx
│ │ ├── simple_document.aspx.cs
│ │ ├── split_document.aspx
│ │ ├── split_document.aspx.cs
│ │ └── Web.config
│ ├── Changelog.txt
│ ├── docs
│ ├── examples
│ │ ├── interactive_API.html
│ │ ├── searchmatchall.html
│ │ ├── singlepage.html
│ │ └── two_page.html
│ ├── FlexPaperViewer.swf
│ ├── highlight.xml
│ ├── index.html
│ ├── js
│ │ ├── flexpaper_flash_debug.js
│ │ ├── flexpaper_flash.js
│ │ └── jquery.js
│ ├── LICENSE-COMMERCIAL.txt
│ ├── LICENSE.txt
│ ├── LICENSE-UNLIMITED.txt
│ ├── Paper.swf
│ ├── pdf
│ │ ├── Paper.pdf
│ │ └── Report.pdf
│ ├── php
│ │ ├── admin_files
│ │ │ ├── controls
│ │ │ │ ├── check-exists.php
│ │ │ │ ├── uploadify.php
│ │ │ │ └── uploadify.swf
│ │ │ ├── css
│ │ │ │ ├── install.css
│ │ │ │ ├── prettify.css
│ │ │ │ └── uploadify.css
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ ├── images
│ │ │ │ ├── bg_button_.png
│ │ │ │ ├── bg_head.png
│ │ │ │ ├── bg_process_active.gif
│ │ │ │ ├── bg_process_complete.gif
│ │ │ │ ├── bg_process_default.gif
│ │ │ │ ├── bg_process_prevactive.gif
│ │ │ │ ├── button_hdr_docs.png
│ │ │ │ ├── button_hdr_home.png
│ │ │ │ ├── cancel.png
│ │ │ │ ├── config.ini.win.php.png
│ │ │ │ ├── delete.png
│ │ │ │ ├── flexpaper_logo.png
│ │ │ │ ├── footer_logo.gif
│ │ │ │ ├── icon_check_process_12px.gif
│ │ │ │ ├── icon_warn.png
│ │ │ │ ├── info_icon.png
│ │ │ │ ├── paper_lock.png
│ │ │ │ ├── reload.png
│ │ │ │ ├── std_btn_24_blue.png
│ │ │ │ └── upload.png
│ │ │ ├── js
│ │ │ │ ├── jquery.min.js
│ │ │ │ ├── jquery.uploadify.min.js
│ │ │ │ ├── pagination.js
│ │ │ │ ├── prettify.js
│ │ │ │ └── swfobject.js
│ │ │ ├── uploadify.php
│ │ │ └── uploadify.swf
│ │ ├── change_config.php
│ │ ├── checkdirpermissions.php
│ │ ├── config
│ │ │ ├── config.ini.nix.php
│ │ │ └── config.ini.win.php
│ │ ├── FlexPaperViewer.swf
│ │ ├── index.php
│ │ ├── js
│ │ │ ├── flexpaper_flash_debug.js
│ │ │ ├── flexpaper_flash.js
│ │ │ └── jquery.js
│ │ ├── lib
│ │ │ ├── common.php
│ │ │ ├── config.php
│ │ │ ├── pdf2swf_php5.php
│ │ │ └── swfextract_php5.php
│ │ ├── pdf
│ │ ├── playerProductInstall.swf
│ │ ├── services
│ │ │ ├── containstext.php
│ │ │ ├── numpages.php
│ │ │ └── view.php
│ │ ├── setup.php
│ │ ├── simple_document.php
│ │ └── split_document.php
│ └── playerProductInstall.swf
├── META-INF
│ └── MANIFEST.MF
├── pdf
├── swf
│ ├── Computer.swf
│ ├── Lucene.swf
│ ├── Paper.swf
│ └── playerProductInstall.swf
├── viewOnline
│ ├── FlexPaperViewer.swf
│ ├── js
│ │ ├── flexpaper_flash_debug.js
│ │ ├── flexpaper_flash.js
│ │ ├── jquery1.7.1.min.js
│ │ └── jquery.js
│ └── MyJsp.jsp
├── WEB-INF
│ ├── classes
│ │ ├── com
│ │ │ └── chain
│ │ │ ├── servlet
│ │ │ │ └── OnlineServlet.class
│ │ │ └── utils
│ │ │ ├── Doc2PdfUtil$STATUS.class
│ │ │ ├── Doc2PdfUtil.class
│ │ │ ├── PathUtil.class
│ │ │ └── Pdf2SwfUtil.class
│ │ └── log4j.properties
│ ├── lib
│ │ ├── commons-cli-1.1.jar
│ │ ├── commons-io-1.4.jar
│ │ ├── jodconverter-core-3.0-beta-4.jar
│ │ ├── json-20090211.jar
│ │ ├── juh-3.2.1.jar
│ │ ├── jurt-3.2.1.jar
│ │ ├── log4j-1.2.15.jar
│ │ ├── ridl-3.2.1.jar
│ │ └── unoil-3.2.1.jar
│ └── web.xml
└── 说明
46 directories, 166 files
评论